

/*Appear Pop Up Page*/
function openViewWin(URL){
	var features="top=40, left=100, location=no, menubar=no, status=yes, scrollbars=yes, resizable=yes, toolbar=no";
	var w = 1040;
	var h = 800;
	features +=", width="+w;
	features +=", height="+h;
	window_pop = window.open(URL, 'view', features);
	window_pop.focus();
}

function openTelFax(URL){
	var features="top=40, left=100, location=no, menubar=no, status=yes, scrollbars=yes, resizable=yes, toolbar=no";
	var w = 720;
	var h = 600;
	features +=", width="+w;
	features +=", height="+h;
	window_pop = window.open(URL, 'telfax', features);
	window_pop.focus();
}

function openGraph(URL){
	var features="top=40, left=100, location=no, menubar=no, status=yes, scrollbars=yes, resizable=yes, toolbar=no";
	var w = 720;
	var h = 500;
	features +=", width="+w;
	features +=", height="+h;
	window_pop = window.open(URL, 'graph', features);
	window_pop.focus();
}



