//___________________________________________________________________[POPUP WINDOW]

function openCourseWin(wUrl){
	var wObj;
	wWidth = 520;
	wHeight = 440;
	scWidthCenter = screen.availWidth / 2;
	scHeightCenter = screen.availHeight / 2;
//	wOption = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=" + wWidth + ",height=" + wHeight;
	wOption = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=" + wWidth + ",height=" + wHeight + ",left=" + (scWidthCenter - (wWidth / 2)) + ",top=" + (scHeightCenter - (wHeight / 2));
	wObj = window.open(wUrl,'Style',wOption);
	wObj.focus();
}






//function openCourseWin(wUrl){
//	var wObj;
//	wWidth = 520;
//	wHeight = 440;
////	scWidthCenter = screen.availWidth / 2;
////	scHeightCenter = screen.availHeight / 2;
//	wOption = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=" + wWidth + ",height=" + wHeight;
//	wObj = window.open(wUrl,'course',wOption);
//	wObj.focus();
//}