

function pop_open(url, win, s, w, h) {
   win = window.open(url, win, 'resizable=no,scrollbars=' + s + ',x=100,y=200,width=' + w + ',height=' + h);
 }



function open_window(w_title,w_width,w_height,scroll_yes,link_file){
	// window.open (link_file,w_title,"width="+w_width+",height="+w_height+",left=0,top=0,scrollbars="+scroll_yes+",resizable='no'")
	
  }

/**************************************
	Pop-up
**************************************/
function na_open_window(name, url, left, top, width, height, toolbar, menubar, statusbar, scrollbar, resizable)
{
  toolbar_str = toolbar ? 'yes' : 'no';
  menubar_str = menubar ? 'yes' : 'no';
  statusbar_str = statusbar ? 'yes' : 'no';
  scrollbar_str = scrollbar ? 'yes' : 'no';
  resizable_str = resizable ? 'yes' : 'no';
  window.open(url, name, 'left='+left+',top='+top+',width='+width+',height='+height+',toolbar='+toolbar_str+',menubar='+menubar_str+',status='+statusbar_str+',scrollbars='+scrollbar_str+',resizable='+resizable_str);
}
/* <a href="javascript:na_open_window('win', 'CustomerIssueRequestDept.htm', 0, 0, 438, 460, 0, 0, 0, 1, 0)"> NewWindow Open </a>  ÆË¾÷¸µÅ© */



/**************************************
	ÇÃ·¡½Ã
**************************************/
function show(m_url,m_width,m_height){
	//document.write(m_url,m_width,m_height);
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="' +m_width+ '" height="'+m_height+'">');
document.write('<param name="wmode" value="transparent">');
document.write('<param name="movie" value="'+m_url+'">');
document.write('<param name="quality" value="high">');
document.write('<embed src="'+m_url+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+m_width+'" height="'+m_height+'">');
document.write('</embed>');
document.write('</object>');
}
/*<script language="Javascript">show('/image/quick_menu.swf','68','374');</script>*/
