function popUp(strURL,strType,strHeight,strWidth) {
var strOptions="";
if (strType=="console") strOptions="resizable,scrollbars,height="+strHeight+",width="+strWidth;
if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;
window.open(strURL, 'newWin', strOptions);
}

function confirmDelete(itemTitle){
	if (confirm("Are you sure you wish to delete " + itemTitle + "?")) { return true ; } else { return false ; }
}

function confirmImageDelete(itemTitle){
	if (confirm("Are you sure you wish to delete the image from " + itemTitle + "?")) { return true ; } else { return false ; }
}

function confirmProductMove(itemTitle){
	if (confirm("Are you sure you wish move this product into the " + itemTitle + " category?")) { return true ; } else { return false ; }
}

function confirmProductDelete(itemTitle){
	if (confirm("Are you sure you wish DELETE " + itemTitle + "?\r\n\r\nThis action cannot be undone!")) { return true ; } else { return false ; }
}

function confirmCategoryDelete(itemTitle){
	if (confirm("Are you sure you wish DELETE " + itemTitle + "?\r\n\r\nThis action cannot be undone!")) { return true ; } else { return false ; }
}

