// JavaScript Document
function referWindow(){
	window.open("../general/refer_site.cfm", "refer", "height=300, width=300");
}

function launchDownload(file){
	window.open('popup_download.cfm?itmID='+file, "download", "height=180, width=300, scrollbars=false");
}

var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=660,width=470,left=200,top=200,resizable=no,scrollbars=no,toolbar=no,status=no');
	if (window.focus) {newwindow.focus()}
}