// JavaScript Document

function category_open(URL){
	window.open(URL,"window_name","width=620,height=700,toolbar=yes, resizable=yes, scrollbars=yes,location=no,menubar=no");
}

function hard_open(URL){
	window.open(URL,"window_hard","width=640,height=700,toolbar=yes, resizable=yes, scrollbars=yes,location=no,menubar=no");
}

function draw_open(URL){
	window.open(URL,"window_name","width=550,height=600,toolbar=yes, resizable=yes, scrollbars=yes,location=no,menubar=no");
}

function openPVWindow(theURL,pageNum,winName,features) { //v2.0 
win=window.open(theURL+"?page_num="+pageNum,winName,features);
win.focus();
}

function backlink(URL) {
	window.opener.location.href = url;
}
