// JavaScript Document
function confirmSubmit()
{
var agree=confirm("Are you sure you wish to continue?");
if (agree)
	return true ;
else
	return false ;
}

function openWindow(url,w,h,tb,stb,l,mb,sb,rs,x,y){
    var pos=(document.layers)? ',screenX='+x+',screenY='+y: ',left='+x+',top='+y;
    tb=(tb)?'yes':'no';
    stb=(stb)?'yes':'no';
    l=(l)?'yes':'no';
    mb=(mb)?'yes':'no';
    sb=(sb)?'yes':'no';
    rs=(rs)?'yes':'no';
    var txt='';
    txt+='scrollbars='+sb;
    txt+=',width='+w;
    txt+=',height='+h;
    txt+=',toolbar='+tb;
    txt+=',status='+stb;
    txt+=',menubar='+mb;
    txt+=',links='+l;
    txt+=',resizable='+rs;
    var x=window.open(url, 'newWin'+new Date().getTime(), txt+pos);
    x.focus();
}

