function quickImageView(url, name, w, h){
	var wndprop = ",scrollbars,resizable";
	w = w + 50;
	h = h + 105;
	popupWin = window.open(url, name, 'width='+w+',height='+h+wndprop, false);
	popupWin.resizeTo(w, h);
	//popupWin.focus();
}

function quickView(url, name, w, h){
	new_window=window.open(url,name,'width=' + w + ',height=' + h + 
		',toolbar=0,location=0,menubar=0,status=0,scrollbars=1,resizable=1,directories=0');
	new_window.focus();
}

function largeWindow(url){
   var w = screen.availWidth;
   var h = screen.availHeight;

   var w = window.open("","",'left=0,top=0,width='+w+',height='+h+',scrollbars=0,fullscreen=yes');
   w.location = url;
}

function contestDetails(ctsid){
	var url = "contests/contestDetails.asp?ctsid="+ctsid;
	var wname = "ContestDetails";
	
	var features = "dialogWidth:600px;edge:sunken;help:no;resizable:yes";
	//window.showModelessDialog(url,window,features); 
	
	var wndprop = "scrollbars,resizable";
	popupWin = window.open(url, wname, wndprop, false);
	popupWin.resizeTo(600, 700);				
}
