<!--// window PopUp function for details boxes

function popWin(URL) {	quizWin = window.open(URL,"PopDialog","toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=100,height=100,screenX=25,screenY=25,top=25,left=25");
}

function galleryWin(URL, w, h) {	popWin = window.open(URL,"PopDialog","toolbar=no,location=no,status=yes,menubar=no,scrollbars=yes,resizable=no,width=" + w + ",height=" + h + ",screenX=25,screenY=25,top=25,left=25");
}

function sizeWin(URL, w, h) {	popWinsize = window.open(URL,"PopDialog","toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=" + w + ",height=" + h + ",screenX=25,screenY=25,top=25,left=25");
}

function flashWin(URL, w, h) {	fWin = window.open(URL,"FlashDemo","toolbar=no,location=no,status=no,menubar=no,scrollbars=auto,resizable=yes,width=" + w + ",height=" + h + ",screenX=45,screenY=45,top=45,left=45");
}

function handleErrors() {	var nada;
}

function toolbarWin(URL, w, h) {	tbWin = window.open(URL,"PopDialog","toolbar=yes,location=no,status=yes,menubar=no,scrollbars=yes,resizable=no,width=" + w + ",height=" + h + ",screenX=10,screenY=10,top=10,left=10");
}

window.onerror = handleErrors;//-->
