// added by cathyx on Feb.08.07

function popup_window(url) 
{
	window.open(url);
}

/*
comment :  	pop up a image window
parameter :	url			image url
			img_width	image width
			img_height	image height
			img_title	image title
*/
function popup_Image(url,img_width,img_height,img_title) 
{
	//window size
	win_width = parseInt(img_width)+25;
	win_height= parseInt(img_height)+60;
	//window state
	img_window = window.open('','popupWindow',
	'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width='
	+win_width+',height='+win_height+',screenX=0,screenY=0,top=0,left=0');
	//
	img_window.document.write('<html><head><title>');
	img_window.document.write(img_title);
	img_window.document.write('</title></head>');
	img_window.document.write('<body><a href=javascript:window.close() onclick=window.opener=nullf>');
	img_window.document.write('<IMG SRC=');
	img_window.document.write(url);
	img_window.document.write(' border=\'0\'><P align="center">close window</P></a><body><html>');
}