function ac(dosya,w,h)
{
	window.open(dosya,'','scrollbars=1; height='+h+'; width='+w+'; left=5; top=15; status=1;');
}
function ac1(sayfa,en,boy)
{
if (notsubform.notsub.value == "") {
alert ("A student should be selected from the list")
}
else
{
ac(sayfa + '?stuid=' + notsubform.notsub.value ,en,boy);
}
}
function ac2(sayfa,en,boy)
{
if (waitform.wait.value == "") {
alert ("A student should be selected from the list")
}
else
{
ac(sayfa + '?stuid=' + waitform.wait.value ,en,boy);
}
}
function ac3(sayfa,en,boy)
{
if (apprform.appr.value == "") {
alert ("A student should be selected from the list")
}
else
{
ac(sayfa + '?stuid=' + apprform.appr.value ,en,boy);
}
}

function openerac(path)
{
	opener.location.href=path;
}