
function openWindow(strUrl) {
	var objNewWindow = window.open(strUrl,null,"left=100,top=100,width=640,height=480,status=no,resizable=no,toolbar=no,menubar=no,location=no,scrollbars=yes");
	objNewWindow.focus();
}

function openWindowForItem(strUrl) {
	var objNewWindow = window.open(strUrl,null,"left=100,top=100,width=680,height=400,status=yes,resizable=yes,toolbar=yes,menubar=yes,location=yes,scrollbars=yes");
	objNewWindow.focus();
}
