var strWebsite = "";
if (location.hostname == "localhost") {
	var strWebsite = "http://" + location.hostname + "/swapnstuff/";
} else {
	var strWebsite = "http://" + location.hostname + "/";
}
//localhost
//llama.swapnstuff.com
//www.swapnstuff.com
function setFocus() {
	document.frmGiveItem.txtTitle.focus();
}

function promptDelete() {
	var agree=confirm("Are you sure you'd like to delete this item?");
	if (agree)
		return true ;
	else
		return false ;
}
//alert(location.hostname);
function viewLargeImage(intItemId) {
	 window.open (strWebsite + "images/item_large/" + intItemId + ".jpg", "mywindow", "status=0,toolbar=0,location=0,menubar=0,directories=0,resizable=1");
}

function viewAmazonImage(strImageUrl) {
	 window.open (strImageUrl, "mywindow", "status=0,toolbar=0,location=0,menubar=0,directories=0,resizable=1");
}
