

function showimage(url,width,height)
	{
	//if (imagewindow)
	//	{
	//		imagewindow.close();
	//	}
	_width=parseInt(width)+10;
	_height=parseInt(height)+20;

	parameters="statusbar=no,locationbar=no,scrollbars=no,width="+_width+",height="+_height;	
    url="show.php?url="+url;
	imagewin=window.open(url,"imagewindow",parameters);
	imagewin.focus();
	}

function newsPop(url)
	{
	parameters="statusbar=no,locationbar=no,menubar=yes,scrollbars=yes,width=350,height=450";	
	newswin=window.open(url,"newswin",parameters);
	newswin.focus();
	}

function projectPop(url)
	{
	parameters="statusbar=no,locationbar=no,menubar=no,scrollbars=no,width=669,height=317";	
	newswin=window.open(url,"banyyan_project",parameters);
	newswin.focus();
	}

function sitemapPop(lang)
	{
	parameters="statusbar=no,locationbar=no,menubar=yes,scrollbars=yes,width=350,height=450";	
	newswin=window.open("index.php?nav=30&lang="+lang,"newswin",parameters);
	newswin.focus();
	}