
function download(application,script) {
	popup('http://www.modelclassrooms.com/software/register.php?application='+application+'&script='+script,350,300);
	//popup('/software/register.php?application='+application+'&script='+script,350,300);
}

function popup(url,width,height) {
	window.name="main";
	window.open(url,"popup","status=0,height="+height+",width="+width+",resizable=1,dependent=1,fullscreen=0,scrollbars=1");
}

function processDownload(script) {
	window.location=script;
}






