//////////m e d i c a l d e s i g n ///////////////
function flash(id,w,h,s,wmode,valuename,values)
{
	var str="", sID="";
	if (id.length > 0) { sID = " id='"+id+"' name='"+id+"'"; }
	str += "<object "+sID+" classid='clsid:D27CDB6E-AE6D-11cf-96B8";
	str += "-444553540000'";
	str += " codebase='http://download.macromedia.com/pub/shockwave/cabs";
	str += "/flash/swflash.cab#version=6,0,29,0'";
	str += " width='"+w+"' height='"+h+"'>";
	str += "<param name='movie' value='"+s+"'>";
	str += "<param name='quality' value='high'>";
	str += "<param name='wmode' value='"+wmode+"'>";
	str += "<param name='"+ valuename +"' value='"+ values +"'>";
	str += "<embed "+sID+" src='"+s+"' quality='high' wmode='"+wmode+"'";
	str += " pluginspage='http://www.macromedia.com/go/getflashplayer'";
	str += " type='application/x-shockwave-flash'";
	str += " width='"+w+"' height='"+h+"'></embed>";
	str += "</object>";
	document.write(str);
}
function loadSwf(sUrl, sWidth, sHeight, sId, sAlign, sBgcolor, sWmode) {
	if (typeof(sWidth) == "undefined") sWidth = "";
	if (typeof(sHeight) == "undefined") sHeight = "";
	if (typeof(sId) == "undefined") sId = "ShockwaveFlash";
	if (typeof(sAlign) == "undefined") sAlign = "";
	if (typeof(sBgcolor) == "undefined") sBgcolor = "";
	if (typeof(sWmode) == "undefined") sWmode = ""; // transparent

	var html = ''
		+ '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" id="'+sId+'"'+(sWidth!=""?' width="'+sWidth+'"':'')+(sHeight!=""?' height="'+sHeight+'"':'')+' align="'+sAlign+'">\n'
		+ '<param name="allowScriptAccess" value="always"/>'
		+ '<param name="movie" value="'+sUrl+'"/>\n'
		+ '<param name="quality" value="high"/>\n'
		+ '<param name="wmode" value="'+sWmode+'"/>\n'
		+ '<embed id="'+sId+'" name="'+sId+'" src="'+sUrl+'" quality="high"'+(sWidth!=""?' width="'+sWidth+'"':'')+(sHeight!=""?' height="'+sHeight+'"':'')+' align="'+sAlign+'" wmode="'+sWmode+'" allowScriptAccess="always" swLiveConnect="true" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />\n'
		+ '</object>\n';

	document.write(html);
}

function getSwf(sUrl, sWidth, sHeight, sId, sAlign, sBgcolor, sWmode) {
	if (typeof(sWidth) == "undefined") sWidth = "";
	if (typeof(sHeight) == "undefined") sHeight = "";
	if (typeof(sId) == "undefined") sId = "ShockwaveFlash";
	if (typeof(sAlign) == "undefined") sAlign = "";
	if (typeof(sBgcolor) == "undefined") sBgcolor = "";
	if (typeof(sWmode) == "undefined") sWmode = ""; // transparent

	return ''
		+ '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" id="'+sId+'"'+(sWidth!=""?' width="'+sWidth+'"':'')+(sHeight!=""?' height="'+sHeight+'"':'')+' align="'+sAlign+'">\n'
		+ '<param name="allowScriptAccess" value="always"/>'
		+ '<param name="movie" value="'+sUrl+'"/>\n'
		+ '<param name="quality" value="high"/>\n'
		+ '<param name="wmode" value="'+sWmode+'"/>\n'
		+ '<embed id="'+sId+'" name="'+sId+'" src="'+sUrl+'" quality="high"'+(sWidth!=""?' width="'+sWidth+'"':'')+(sHeight!=""?' height="'+sHeight+'"':'')+' align="'+sAlign+'" wmode="'+sWmode+'" allowScriptAccess="always" swLiveConnect="true" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />\n'
		+ '</object>\n';
}

function loadMov(sUrl, sWidth, sHeight, sId, sAutoStart, sAutoSize) {
	if (typeof(sWidth) == "undefined") sWidth = "";
	if (typeof(sHeight) == "undefined") sHeight = "";
	if (typeof(sId) == "undefined") sId = "MediaPlayer";
	if (typeof(sAutoStart) == "undefined") sAutoStart = 0;
	if (typeof(sAutoSize) == "undefined") sAutoSize = 1;

	var html = ''
		+ '<object classid=CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95 codebase=http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,0,5,0803 type=application/x-oleobject'+(sWidth!=""?' width="'+sWidth+'"':'')+(sHeight!=""?' height="'+sHeight+'"':'')+' standby=Loading Windows Media Player components... id="'+sId+'">'
		+ '<param name=FileName value="'+sUrl+'">'
		+ '<param name=transparentAtStart value=true>'
		+ '<param name=transparentAtStop value=false>'
		+ '<param name=AnimationAtStart value=false>'
		+ '<param name=AutoStart value='+sAutoStart+'>'
		+ '<param name=AutoRewind value=true>'
		+ '<param name=SendMouseClickEvents value=0>'
		+ '<param name=DisplaySize value=0>'
		+ '<param name=AutoSize value='+sAutoSize+'>'
		+ '<param name=ShowDisplay value=0>'
		+ '<param name=ShowStatusBar value=0>'
		+ '<param name=ShowControls value=1>'
		+ '<param name=ShowTracker value=1>'
		+ '<param name=Enabled value=1>'
		+ '<param name=EnableContextMenu value=0>'
		+ '<param name=EnablePositionControls value=0>'
		+ '<param name=AllowChangeDisplaySize value=1>'
		+ '<param name=EnableFullScreenControls value=0>'
		+ '<param name=ShowPositionControls value=0>'
		+ '<param name=SendKeyboardEvents value=1>'
		+ '<param name=Mute value=0>'
		+ '<param name=Rate value=1>'
		+ '<param name=ClickToPlay value=0>'
		+ '<param name=CursorType value=1>'
		+ '</object>';

	document.write(html);
}



 
function ShowFlash(url, width, height){
        document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="' + width + '" height="' + height + '" VIEWASTEXT>');
        document.write('<param name="movie" value="' + url + '">');
        document.write('<param name="quality" value="high">');
        document.write('<param name="wmode" value="transparent">');
        document.write('<PARAM NAME=menu VALUE=false>');
        document.write('<embed src="' + url + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="incrlication/x-shockwave-flash" wmode="transparent" width="' + width + '" height="' + height + '"></embed>');
        document.write('</object>');
}


////////open window
function MM_openBrWindow(theURL,winName,features) {  
  window.open(theURL,winName,features);
}

////////rollover
function MM_reloadPage(init) {  
  if (init==true) with (navigator) {
    if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; 
    document.MM_pgH=innerHeight; 
    onresize=MM_reloadPage; 
    }
  }
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

function MM_swapImgRernde() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}




//Sitemap
function showHideLayer(stat){
//alert(stat);
//alert(document);
//getChildInfo(document.activeElement);
//alert(document.activeElement);
if(navigator.appName == "Netscape"){
		if(stat){
                document.getElementById('sitemap02').style.visibility="visible";
                document.getElementById('sitemap01').style.visibility="hidden";				
        }else{
                document.getElementById('sitemap02').style.visibility="hidden";
                document.getElementById('sitemap01').style.visibility="visible";				
        }
}else{
		if(stat){
                document.all.sitemap02.style.visibility="visible";
                document.all.sitemap01.style.visibility="hidden";				
        }else{
                document.all.sitemap02.style.visibility="hidden";
                document.all.sitemap01.style.visibility="visible";				
        }
}
}




//Sitemap2
function showHideLayer2(stat){
//alert(stat);
//site2map02
if(document.getElementById('site2map02')){
if(navigator.appName == "Netscape"){
		if(stat){
                document.getElementById('site2map02').style.visibility="visible";
                document.getElementById('site2map01').style.visibility="hidden";				
        }else{
                document.getElementById('site2map02').style.visibility="hidden";
                document.getElementById('site2map01').style.visibility="visible";				
        }
}else{
        if(stat){
                document.all.site2map02.style.visibility="visible";
                document.all.site2map01.style.visibility="hidden";				
        }else{
                document.all.site2map02.style.visibility="hidden";
                document.all.site2map01.style.visibility="visible";				
        }
}
}else if(document.getElementById('main_site2map02')){
if(navigator.appName == "Netscape"){
		if(stat){
			var left = (document.documentElement.clientWidth/2)-503;
			document.getElementById('main_site2map02').style.left = left+"px";
                document.getElementById('main_site2map02').style.visibility="visible";
                document.getElementById('site2map01').style.visibility="hidden";				
        }else{
                document.getElementById('main_site2map02').style.visibility="hidden";
                document.getElementById('site2map01').style.visibility="visible";				
        }
}else{
        if(stat){
			if(navigator.appVersion.substring(25,22) == "6.0"){
			document.getElementById('main_site2map02').style.top = parseInt(document.getElementById('main_site2map02').style.top) +12;
			}
/*			if(navigator.appVersion.indexOf('MSIE 6.0')){
				echo "asdf";
			}*/
			var left = (document.body.clientWidth/2)-503;
			document.getElementById('main_site2map02').style.left = left+"px";
                document.all.main_site2map02.style.visibility="visible";
                document.all.site2map01.style.visibility="hidden";				
        }else{
                document.all.main_site2map02.style.visibility="hidden";
                document.all.site2map01.style.visibility="visible";				
        }
}
}

}


 
 
 //¿À¸¥ÂÊ »çÀÌÆ®¸Ê ÀüÃ¼º¸±â
function showHideLayer3(stat){
//alert(stat);
if(navigator.appName == "Netscape"){
		if(stat){
                document.getElementById('site3map02').style.top=document.getElementById('site3map01').style.top;
				document.getElementById('site3map02').style.visibility="visible";
                document.getElementById('site3map01').style.visibility="hidden";				
        }else{
				document.getElementById('site3map02').style.visibility="hidden";
                document.getElementById('site3map01').style.visibility="visible";				
        }
}else{
        if(stat){
				document.all.site3map02.style.top=document.all.site3map01.style.top;

				document.all.site3map02.style.visibility="visible";
                document.all.site3map01.style.visibility="hidden";				
        }else{
                document.all.site3map02.style.visibility="hidden";
                document.all.site3map01.style.visibility="visible";				
        }
}
}



 //Sitemap4
function showHideLayer4(stat){
//alert(stat);
if(navigator.appName == "Netscape"){
		if(stat){
                document.getElementById('site4map02').style.visibility="visible";
                document.getElementById('site4map01').style.visibility="hidden";				
        }else{
                document.getElementById('site4map02').style.visibility="hidden";
                document.getElementById('site4map01').style.visibility="visible";				
        }

}else{
        if(stat){
                document.all.site4map02.style.visibility="visible";
                document.all.site4map01.style.visibility="hidden";				
        }else{
                document.all.site4map02.style.visibility="hidden";
                document.all.site4map01.style.visibility="visible";				
        }
}
}






 //ÁöÁ¡¼Ò±â ÀüÃ¼ ¾àµµº¸±â
function showHideLayer5(stat){
//alert(stat);
if(navigator.appName == "Netscape"){
		if(stat){
                document.getElementById('site5map02').style.visibility="visible";
                document.getElementById('site5map01').style.visibility="hidden";				
        }else{
                document.getElementById('site5map02').style.visibility="hidden";
                document.getElementById('site5map01').style.visibility="visible";				
        }

}else{
        if(stat){
                document.all.site5map02.style.visibility="visible";
                document.all.site5map01.style.visibility="hidden";				
        }else{
                document.all.site5map02.style.visibility="hidden";
                document.all.site5map01.style.visibility="visible";				
        }
}
}





 //ÀÇ»ç1
function showHideLayer6(stat){
//alert(stat);
if(navigator.appName == "Netscape"){
		if(stat){
			
                document.getElementById('site6map02').style.visibility="visible";
                document.getElementById('site6map01').style.visibility="hidden";				
        }else{
                document.getElementById('site6map02').style.visibility="hidden";
                document.getElementById('site6map01').style.visibility="visible";				
        }
}else{
        if(stat){
                document.all.site6map02.style.visibility="visible";
                document.all.site6map01.style.visibility="hidden";				
        }else{
                document.all.site6map02.style.visibility="hidden";
                document.all.site6map01.style.visibility="visible";				
        }
}
}





 //ÀÇ»ç1_2
function showHideLayer6_2(stat){
//alert(stat);
if(navigator.appName == "Netscape"){
		if(stat){
			
                document.getElementById('site6_2map02').style.visibility="visible";
                document.getElementById('site6_2map01').style.visibility="hidden";				
        }else{
                document.getElementById('site6_2map02').style.visibility="hidden";
                document.getElementById('site6_2map01').style.visibility="visible";				
        }
}else{
        if(stat){
                document.all.site6_2map02.style.visibility="visible";
                document.all.site6_2map01.style.visibility="hidden";				
        }else{
                document.all.site6_2map02.style.visibility="hidden";
                document.all.site6_2map01.style.visibility="visible";				
        }
}
}




 //ÀÇ»ç1_3
function showHideLayer6_3(stat){
//alert(stat);
if(navigator.appName == "Netscape"){
		if(stat){
			
                document.getElementById('site6_3map02').style.visibility="visible";
                document.getElementById('site6_3map01').style.visibility="hidden";				
        }else{
                document.getElementById('site6_3map02').style.visibility="hidden";
                document.getElementById('site6_3map01').style.visibility="visible";				
        }
}else{
        if(stat){
                document.all.site6_3map02.style.visibility="visible";
                document.all.site6_3map01.style.visibility="hidden";				
        }else{
                document.all.site6_3map02.style.visibility="hidden";
                document.all.site6_3map01.style.visibility="visible";				
        }
}
}








 //ÀÇ»ç2
function showHideLayer7(stat){
//alert(stat);
if(navigator.appName == "Netscape"){
		if(stat){
                document.getElementById('site7map02').style.visibility="visible";
                document.getElementById('site7map01').style.visibility="hidden";				
        }else{
                document.getElementById('site7map02').style.visibility="hidden";
                document.getElementById('site7map01').style.visibility="visible";				
        }

}else{
        if(stat){
                document.all.site7map02.style.visibility="visible";
                document.all.site7map01.style.visibility="hidden";				
        }else{
                document.all.site7map02.style.visibility="hidden";
                document.all.site7map01.style.visibility="visible";				
        }
}
}







 //ÀÇ»ç3
function showHideLayer8(stat){
//alert(stat);
if(navigator.appName == "Netscape"){
		if(stat){
                document.getElementById('site8map02').style.visibility="visible";
                document.getElementById('site8map01').style.visibility="hidden";				
        }else{
                document.getElementById('site8map02').style.visibility="hidden";
                document.getElementById('site8map01').style.visibility="visible";				
        }
}else{
        if(stat){
                document.all.site8map02.style.visibility="visible";
                document.all.site8map01.style.visibility="hidden";				
        }else{
                document.all.site8map02.style.visibility="hidden";
                document.all.site8map01.style.visibility="visible";				
        }
}
}





 //ÀÇ»ç4
function showHideLayer9(stat){
//alert(stat);
if(navigator.appName == "Netscape"){
		if(stat){
                document.getElementById('site9map02').style.visibility="visible";
                document.getElementById('site9map01').style.visibility="hidden";				
        }else{
                document.getElementById('site9map02').style.visibility="hidden";
                document.getElementById('site9map01').style.visibility="visible";				
        }
}else{
        if(stat){
                document.all.site9map02.style.visibility="visible";
                document.all.site9map01.style.visibility="hidden";				
        }else{
                document.all.site9map02.style.visibility="hidden";
                document.all.site9map01.style.visibility="visible";				
        }
}
}






 //ÀÇ»ç5
function showHideLayer10(stat){
//alert(stat);
if(navigator.appName == "Netscape"){
		if(stat){
                document.getElementById('site10map02').style.visibility="visible";
                document.getElementById('site10map01').style.visibility="hidden";				
        }else{
                document.getElementById('site10map02').style.visibility="hidden";
                document.getElementById('site10map01').style.visibility="visible";				
        }
}else{
        if(stat){
                document.all.site10map02.style.visibility="visible";
                document.all.site10map01.style.visibility="hidden";				
        }else{
                document.all.site10map02.style.visibility="hidden";
                document.all.site10map01.style.visibility="visible";				
        }
}
}





 //ÀÇ»ç6
function showHideLayer11(stat){
//alert(stat);
if(navigator.appName == "Netscape"){
		if(stat){
                document.getElementById('site11map02').style.visibility="visible";
                document.getElementById('site11map01').style.visibility="hidden";				
        }else{
                document.getElementById('site11map02').style.visibility="hidden";
                document.getElementById('site11map01').style.visibility="visible";				
        }
}else{
        if(stat){
                document.all.site11map02.style.visibility="visible";
                document.all.site11map01.style.visibility="hidden";				
        }else{
                document.all.site11map02.style.visibility="hidden";
                document.all.site11map01.style.visibility="visible";				
        }
}
}




 //¸ÞÀÎÁöÁ¡
function showHideLayer12(stat){
//alert(stat);
location.href='/sub01/010301.asp';
/*
if(navigator.appName == "Netscape"){
		var left = (document.documentElement.clientWidth/2)-523;
		document.getElementById('site12map02').style.left = left+"px";
		if(stat){
                document.getElementById('site12map02').style.visibility="visible";
                document.getElementById('site12map01').style.visibility="hidden";				
        }else{
                document.getElementById('site12map02').style.visibility="hidden";
                document.getElementById('site12map01').style.visibility="visible";				
        }
}else{
	var left = (document.body.clientWidth/2)-523;
		document.all.site12map02.style.left = left;
        if(stat){
                document.all.site12map02.style.visibility="visible";
                document.all.site12map01.style.visibility="hidden";				
        }else{
                document.all.site12map02.style.visibility="hidden";
                document.all.site12map01.style.visibility="visible";			
        }
}*/
}


 //¸ÞÀÎ»ó´Ü »çÀÌÆ®¸Ê
function full_main_menu_sitemap(stat){
//alert(stat);
if(navigator.appName == "Netscape"){
		 if(stat){
               document.getElementById('main_menu_sitemap').style.visibility="visible";
        }else{
               document.getElementById('main_menu_sitemap').style.visibility="hidden";
        }
}else{
        if(stat){
                document.all.main_menu_sitemap.style.visibility="visible";
        }else{
                document.all.main_menu_sitemap.style.visibility="hidden";
        }
}
}


function MM_openBrWindow(theURL,winName,features) {  
  window.open(theURL,winName,features);
}



//////////ÇÃ·¡½¬¿¡¸¸ ÇØ´çµÇ´Â ¸µÅ© ÀÔ´Ï´Ù ///////////////
 

 function full_menu01()
    { showHideLayer(true) }
	
 function full_menu02()
    { showHideLayer(false) }
	
	
	
	
 function full_2menu01()
    { showHideLayer2(true) }
	
 function full_2menu02()
    { showHideLayer2(false) }
	
	
 function full_3menu01()
    { showHideLayer3(true) }
	
 function full_3menu02()
    { showHideLayer3(false) }
	

 function full_4menu01()
    { showHideLayer4(true) }
	
 function full_4menu02()
    { showHideLayer4(false) }
	
	
	
	
// ÁöÁ¡¼Ò°³·¹ÀÌ¾î

 function full_5menu01()
    { showHideLayer5(true) }
	
 function full_5menu02()
    { showHideLayer5(false) }
	
	
	
	
	 function full_6menu01()
    { showHideLayer6(true) }
	
 function full_6menu02()
    { showHideLayer6(false) }
	
	
	
				 function full_6_2menu01()
 			   { showHideLayer6_2(true) }
	
 				function full_6_2menu02()
 		 	  { showHideLayer6_2(false) }
	
	
	
	
			 function full_6_3menu01()
  			  { showHideLayer6_3(true) }
	
 			function full_6_3menu02()
    		{ showHideLayer6_3(false) }
	
	
	
	
	 function full_7menu01()
    { showHideLayer7(true) }
	
 function full_7menu02()
    { showHideLayer7(false) }
	
	
	
	 function full_8menu01()
    { showHideLayer8(true) }
	
 function full_8menu02()
    { showHideLayer8(false) }
	
	
	
	 function full_9menu01()
    { showHideLayer9(true) }
	
 function full_9menu02()
    { showHideLayer9(false) }
	
	
	
	 function full_10menu01()
    { showHideLayer10(true) }
	
 function full_10menu02()
    { showHideLayer10(false) }
	
	
	
		
  function full_11menu01()
    { showHideLayer11(true) }
	
 function full_11menu02()
    { showHideLayer11(false) }
	
	
	 function full_12menu01()
    { showHideLayer12(true) }
	
 function full_12menu02()
    { showHideLayer12(false) }
	
	
	



 
// main menu link --- 
    function main01(){ self.location.href = 'http://www.wwdoctor.com/sub01/010000.asp'; }

	
//·Î±×ÀÎ-------
	function top01()	
    { self.location.href = 'http://www.wwdoctor.com/index.asp'; } //home
	function top02()	
    { self.location.href = 'http://www.wwdoctor.com/sub08/080101.asp'; }//login
	function top03()	
    { self.location.href = 'http://www.wwdoctor.com/sub08/080201.asp'; }//È¸¿ø°¡ÀÔ
	function top04()	
    { self.location.href = 'http://www.wwdoctor.com/sub08/080401.asp'; } //·Î±×¾Æ¿ô
	function top05()	
    { self.location.href = 'http://www.wwdoctor.com/sub08/080301.asp'; } //Á¤º¸¼öÁ¤
 
	
	
	 
  
	
//Æí°­¼Ò°³--- 
	function menu010000(){ self.location.href = 'http://www.wwdoctor.com/sub01/010000.asp'; }
	function menu010101(){ self.location.href = 'http://www.wwdoctor.com/sub01/010101.asp'; }
	function menu010201(){ self.location.href = 'http://www.wwdoctor.com/sub01/010201.asp'; }
	function menu010301(){ self.location.href = 'http://www.wwdoctor.com/sub01/010301.asp'; }
	function menu010401(){ self.location.href = 'http://www.wwdoctor.com/sub01/010401.asp'; }
	function menu010501(){ self.location.href = 'http://www.wwdoctor.com/sub01/010501.asp'; }
	function menu010601(){ self.location.href = 'http://www.wwdoctor.com/sub01/010601.asp'; }
	function menu010701(){ self.location.href = 'http://www.wwdoctor.com/sub01/010701.asp'; }

// È£Èí±âÁúÈ¯ --- 
	function menu020000(){ self.location.href = 'http://www.wwdoctor.com/sub02/020000.asp'; }
	function menu020101(){ self.location.href = 'http://www.wwdoctor.com/sub02/020101.asp'; }
	function menu020201(){ self.location.href = 'http://www.wwdoctor.com/sub02/020501.asp'; }
	function menu020301(){ self.location.href = 'http://www.wwdoctor.com/sub02/020701.asp'; }
	function menu020401(){ self.location.href = 'http://www.wwdoctor.com/sub02/020901.asp'; }
	function menu020501(){ self.location.href = 'http://www.wwdoctor.com/sub02/020301.asp'; }
	function menu020601(){ self.location.href = 'http://www.wwdoctor.com/sub02/020401.asp'; }
	function menu020701(){ self.location.href = 'http://www.wwdoctor.com/sub02/021001.asp'; }
	function menu020801(){ self.location.href = 'http://www.wwdoctor.com/sub02/021101.asp'; }
	function menu020901(){ self.location.href = 'http://www.wwdoctor.com/sub02/020201.asp'; }
	function menu021001(){ self.location.href = 'http://www.wwdoctor.com/sub02/020601.asp'; }
	function menu021101(){ self.location.href = 'http://www.wwdoctor.com/sub02/020801.asp'; }
	function menu021201(){ self.location.href = 'http://www.wwdoctor.com/sub02/021201.asp'; }
	function menu021301(){ self.location.href = 'http://www.wwdoctor.com/sub02/021301.asp'; }

/*	function menu020101(){ self.location.href = '/sub02/020101.asp'; }
	function menu020201(){ self.location.href = '/sub02/020201.asp'; }
	function menu020301(){ self.location.href = '/sub02/020301.asp'; }
	function menu020401(){ self.location.href = '/sub02/020401.asp'; }
	function menu020501(){ self.location.href = '/sub02/020501.asp'; }
	function menu020601(){ self.location.href = '/sub02/020601.asp'; }
	function menu020701(){ self.location.href = '/sub02/020701.asp'; }
	function menu020801(){ self.location.href = '/sub02/020801.asp'; }
	function menu020901(){ self.location.href = '/sub02/020901.asp'; }
	function menu021001(){ self.location.href = '/sub02/021001.asp'; }
	function menu021101(){ self.location.href = '/sub02/021101.asp'; }
	function menu021201(){ self.location.href = '/sub02/021201.asp'; }
	function menu021301(){ self.location.href = '/sub02/021301.asp'; }*/

//¼­ºê ¸ÞÀÎ
	function menu020101_l(){ self.location.href = 'http://www.wwdoctor.com/sub02/020101.asp'; }	
	function menu020201_l(){ self.location.href = 'http://www.wwdoctor.com/sub02/020201_l.asp'; }	
	function menu020301_l(){ self.location.href = 'http://www.wwdoctor.com/sub02/020301_l.asp'; }	
	function menu020401_l(){ self.location.href = 'http://www.wwdoctor.com/sub02/020401_l.asp'; }	
	function menu020501_l(){ self.location.href = 'http://www.wwdoctor.com/sub02/020501_l.asp'; }	
	function menu020601_l(){ self.location.href = 'http://www.wwdoctor.com/sub02/020601_l.asp'; }	
	function menu020701_l(){ self.location.href = 'http://www.wwdoctor.com/sub02/020701_l.asp'; }	
	function menu020801_l(){ self.location.href = 'http://www.wwdoctor.com/sub02/020801_l.asp'; }	
	function menu020901_l(){ self.location.href = 'http://www.wwdoctor.com/sub02/020901_l.asp'; }	
	function menu021001_l(){ self.location.href = 'http://www.wwdoctor.com/sub02/021001_l.asp'; }	
	function menu021101_l(){ self.location.href = 'http://www.wwdoctor.com/sub02/021101_l.asp'; }	
	function menu021201_l(){ self.location.href = 'http://www.wwdoctor.com/sub02/021201_l.asp'; }	
	function menu021301_l(){ self.location.href = 'http://www.wwdoctor.com/sub02/021301_l.asp'; }	

// ÇÇºÎÁúÈ¯-- 
	function menu030101(){ self.location.href = 'http://www.wwdoctor.com/sub03/030101.asp'; }
	function menu030201(){ self.location.href = 'http://www.wwdoctor.com/sub03/031301.asp'; }
	function menu030301(){ self.location.href = 'http://www.wwdoctor.com/sub03/031401.asp'; }
	function menu030401(){ self.location.href = 'http://www.wwdoctor.com/sub03/030201.asp'; }
	function menu030501(){ self.location.href = 'http://www.wwdoctor.com/sub03/030301.asp'; }
	function menu030601(){ self.location.href = 'http://www.wwdoctor.com/sub03/030401.asp'; }
	function menu030701(){ self.location.href = 'http://www.wwdoctor.com/sub03/030501.asp'; }
	function menu030801(){ self.location.href = 'http://www.wwdoctor.com/sub03/030601.asp'; }
	function menu030901(){ self.location.href = 'http://www.wwdoctor.com/sub03/030701.asp'; }
	function menu031001(){ self.location.href = 'http://www.wwdoctor.com/sub03/030801.asp'; }
	function menu031101(){ self.location.href = 'http://www.wwdoctor.com/sub03/030901.asp'; }
	function menu031201(){ self.location.href = 'http://www.wwdoctor.com/sub03/031001.asp'; }
	function menu031301(){ self.location.href = 'http://www.wwdoctor.com/sub03/031101.asp'; }
	function menu031401(){ self.location.href = 'http://www.wwdoctor.com/sub03/031201.asp'; }
	function menu031501(){ self.location.href = 'http://www.wwdoctor.com/sub03/031501.asp'; }
	function menu031601(){ self.location.href = 'http://www.wwdoctor.com/sub03/031601.asp'; }
	function menu031701(){ self.location.href = 'http://www.wwdoctor.com/sub03/031701.asp'; }
	function menu031801(){ self.location.href = 'http://www.wwdoctor.com/sub03/031801.asp'; }
	function menu031901(){ self.location.href = 'http://www.wwdoctor.com/sub03/031901.asp'; }
	function menu032001(){ self.location.href = 'http://www.wwdoctor.com/sub03/032001.asp'; }


	function menu030101_l(){ self.location.href = 'http://www.wwdoctor.com/sub03/030101.asp'; }
	function menu030201_l(){ self.location.href = 'http://www.wwdoctor.com/sub03/030201_l.asp'; }
	function menu030301_l(){ self.location.href = 'http://www.wwdoctor.com/sub03/030301_l.asp'; }
	function menu030401_l(){ self.location.href = 'http://www.wwdoctor.com/sub03/030401_l.asp'; }
	function menu030501_l(){ self.location.href = 'http://www.wwdoctor.com/sub03/030501_l.asp'; }
	function menu030601_l(){ self.location.href = 'http://www.wwdoctor.com/sub03/030601_l.asp'; }
	function menu030701_l(){ self.location.href = 'http://www.wwdoctor.com/sub03/030701_l.asp'; }
	function menu030801_l(){ self.location.href = 'http://www.wwdoctor.com/sub03/030801_l.asp'; }
	function menu030901_l(){ self.location.href = 'http://www.wwdoctor.com/sub03/030901_l.asp'; }
	function menu031001_l(){ self.location.href = 'http://www.wwdoctor.com/sub03/031001_l.asp'; }
	function menu031101_l(){ self.location.href = 'http://www.wwdoctor.com/sub03/031101_l.asp'; }
	function menu031201_l(){ self.location.href = 'http://www.wwdoctor.com/sub03/031201_l.asp'; }
	function menu031301_l(){ self.location.href = 'http://www.wwdoctor.com/sub03/031301_l.asp'; }
	function menu031401_l(){ self.location.href = 'http://www.wwdoctor.com/sub03/031401_l.asp'; }
	function menu031501_l(){ self.location.href = 'http://www.wwdoctor.com/sub03/031501_l.asp'; }
	function menu031601_l(){ self.location.href = 'http://www.wwdoctor.com/sub03/031601_l.asp'; }
	function menu031701_l(){ self.location.href = 'http://www.wwdoctor.com/sub03/031701_l.asp'; }
	function menu031801_l(){ self.location.href = 'http://www.wwdoctor.com/sub03/031801_l.asp'; }
	function menu031901_l(){ self.location.href = 'http://www.wwdoctor.com/sub03/031901_l.asp'; }
	function menu032001_l(){ self.location.href = 'http://www.wwdoctor.com/sub03/032001_l.asp'; }


// ±âÅ¸ÁúÈ¯--- 
	function menu040101(){ self.location.href = 'http://www.wwdoctor.com/sub04/040101.asp'; }
	function menu040201(){ self.location.href = 'http://www.wwdoctor.com/sub04/040201.asp'; }
	function menu040301(){ self.location.href = 'http://www.wwdoctor.com/sub04/040301.asp'; }
	function menu040401(){ self.location.href = 'http://www.wwdoctor.com/sub04/040401.asp'; }
	function menu040501(){ self.location.href = 'http://www.wwdoctor.com/sub04/040501.asp'; }

	function menu040101_l(){ self.location.href = 'http://www.wwdoctor.com/sub04/040101_l.asp'; }
	function menu040201_l(){ self.location.href = 'http://www.wwdoctor.com/sub04/040201_l.asp'; }
	function menu040301_l(){ self.location.href = 'http://www.wwdoctor.com/sub04/040301_l.asp'; }
	function menu040401_l(){ self.location.href = 'http://www.wwdoctor.com/sub04/040401_l.asp'; }
	function menu040501_l(){ self.location.href = 'http://www.wwdoctor.com/sub04/040501_l.asp'; }

// ¼ºÀå--- 
	function menu050101(){ self.location.href = 'http://www.wwdoctor.com/sub05/050101.asp'; }
	function menu050201(){ self.location.href = 'http://www.wwdoctor.com/sub05/050201.asp'; }
	function menu050301(){ self.location.href = 'http://www.wwdoctor.com/sub05/050301.asp'; }
	function menu050401(){ self.location.href = 'http://www.wwdoctor.com/sub05/050401.asp'; }



// Æí°­ÅÁ--- 
	function menu060101(){ self.location.href = 'http://www.wwdoctor.com/sub06/060501.asp'; }
	function menu060201(){ self.location.href = 'http://www.wwdoctor.com/sub06/060601.asp'; }
	function menu060301(){ self.location.href = 'http://www.wwdoctor.com/sub06/060201.asp'; }
	function menu060401(){ self.location.href = 'http://www.wwdoctor.com/sub06/060301.asp'; }
	function menu060501(){ self.location.href = 'http://www.wwdoctor.com/sub06/060401.asp'; }
	function menu060601(){ self.location.href = 'http://www.wwdoctor.com/sub06/060101.asp'; }
	function menu060701(){ self.location.href = 'http://www.wwdoctor.com/sub06/060701.asp'; }


// Ä¿¹Â´ÏÆ¼ ---
	function menu070101(){ self.location.href = 'http://www.wwdoctor.com/sub07/070101.asp'; }
	function menu070201(){ self.location.href = 'http://www.wwdoctor.com/sub07/070201.asp'; }
	function menu070301(){ self.location.href = 'http://www.wwdoctor.com/sub07/070901.asp'; }
	function menu070401(){ self.location.href = 'http://www.wwdoctor.com/sub07/070301.asp'; }
	function menu070501(){ self.location.href = 'http://www.wwdoctor.com/sub07/070401.asp'; }
	function menu070601(){ self.location.href = 'http://www.wwdoctor.com/sub07/070501.asp'; }
	function menu070701(){ self.location.href = 'http://www.wwdoctor.com/sub07/070601.asp'; }
	function menu070801(){ self.location.href = 'http://www.wwdoctor.com/sub07/070701.asp'; }
	function menu070901(){ self.location.href = 'http://www.wwdoctor.com/sub07/070801.asp'; }
	function menu071001(){ self.location.href = 'http://www.wwdoctor.com/sub07/071001.asp'; }



// Ä¿¹Â´ÏÆ¼ ---
// ·Î±×ÀÎ ¸µÅ© -- 
	function getCookie(name) {
		var Found = false
		var start, end
		var i = 0
		var cookieValue = unescape(document.cookie)

		while(i <= cookieValue.length) {
			start = i
			end = start + name.length
			if(cookieValue.substring(start, end) == name) {
				Found = true
				break
			}
			i++
		}

		if(Found == true) {
			start = end + 1
			end = cookieValue.indexOf(";", start)
			if(end < start)
				end = cookieValue.length
			return cookieValue.substring(start, end)
		}
		return ""
	}
//	function menu080101(){alert(unescape("PYUN_ID"))}
	function menu080101(){if(getCookie("PYUN_ID") != ""){alert("·Î±×ÀÎ µÇ¾î ÀÖ´Â »óÅÂÀÔ´Ï´Ù.");  }else{ self.location.href = 'http://www.wwdoctor.com/sub08/080101.asp'; }}
	function menu080201(){if(getCookie("PYUN_ID") != ""){alert("Æí°­ÇÑÀÇ¿øÀÇ È¸¿øÀÌ½Ê´Ï´Ù.");    }else{ self.location.href = 'http://www.wwdoctor.com/sub08/080201.asp'; }}
	function menu080301(){if(getCookie("PYUN_ID") == ""){alert("·Î±×ÀÎ ÈÄ ÀÌ¿ëÀÌ °¡´ÉÇÏ½Ê´Ï´Ù.");}else{ self.location.href = 'http://www.wwdoctor.com/sub08/080301.asp'; }}
	function menu080401(){if(getCookie("PYUN_ID") == ""){alert("·Î±×ÀÎ ÈÄ ÀÌ¿ëÀÌ °¡´ÉÇÏ½Ê´Ï´Ù.");}else{ self.location.href = 'http://www.wwdoctor.com/sub08/080401.asp'; }}
	function menu080501(){ self.location.href = 'http://www.wwdoctor.com/sub08/080501.asp'; }
	function menu080601(){ self.location.href = 'http://www.wwdoctor.com/sub08/080601.asp'; }
	function menu080701(){ self.location.href = 'http://www.wwdoctor.com/sub08/080701.asp'; }

// ·»µùÆäÀÌÁö ¹Ù·Î°¡±â ¸Þ´º ¸µÅ© ---
	function banner01(){ self.location.href = 'http://www.wwdoctor.com/sub01/010701.asp'; }
	function banner02(){ self.location.href = 'http://www.wwdoctor.com/sub07/070401.asp'; }
	function banner03(){ self.location.href = 'http://www.wwdoctor.com/sub01/010501.asp'; }
	function banner04(){ self.location.href = 'http://www.wwdoctor.com/sub06/060501.asp'; }

// Äü¸Þ´º ¸µÅ© ---
	function banner04_01(){ self.location.href = 'http://www.wwdoctor.com/sub07/070301.asp'; }
	function banner04_02(){ self.location.href = 'http://www.wwdoctor.com/sub07/070601.asp'; }
	function banner04_03(){ self.location.href = 'http://www.wwdoctor.com/sub07/070201.asp'; }
	function banner04_04(){ self.location.href = 'http://www.wwdoctor.com/sub01/010301.asp'; }


// ¾ð¾î¼±ÅÃ ¸µÅ© ---
	function lang1(){window.open("http://www.wwdoctor.com/japan2");}   
	function lang2(){window.open("http://www.wwdoctor.com/en/index.html");}   
	function lang3(){window.open("http://www.wwdoctor.com/ch/index.html");}   
	function lang4(){window.open("http://www.wwdoctor.com/sp/index.html");}   


// ·Î±×ÀÎ ¸µÅ© -- 
	function login_link(){self.location.href='http://www.wwdoctor.com/sub08/080101.asp'}
	function logout_link(){self.location.href='http://www.wwdoctor.com/sub08/080401.asp'}
	function join_link(){self.location.href='http://www.wwdoctor.com/sub08/080201.asp'}
	function modify_link(){alert('ÁØºñÁßÀÔ´Ï´Ù.');}




//---------------- ÀüÃ¼º¸±â -------------------//
function initMoving(target, position, topLimit, btmLimit) {
if (!target)
return false;

var obj = target;
obj.initTop = position;
obj.topLimit = topLimit;
obj.bottomLimit = document.documentElement.scrollHeight - btmLimit;

obj.style.position = "absolute";
obj.top = obj.initTop;
obj.left = obj.initLeft;

if (typeof(window.pageYOffset) == "number") {
obj.getTop = function() {
return window.pageYOffset;
}
} else if (typeof(document.documentElement.scrollTop) == "number") {
obj.getTop = function() {
return document.documentElement.scrollTop;
}
} else {
obj.getTop = function() {
return 0;
}
}

if (self.innerHeight) {
obj.getHeight = function() {
return self.innerHeight;
}
} else if(document.documentElement.clientHeight) {
obj.getHeight = function() {
return document.documentElement.clientHeight;
}
} else {
obj.getHeight = function() {
return 500;
}
}

obj.move = setInterval(function() {
if (obj.initTop > 0) {
pos = obj.getTop() + obj.initTop;
} else {
pos = obj.getTop() + obj.getHeight() + obj.initTop;
//pos = obj.getTop() + obj.getHeight() / 2 - 15;
}

if (pos > obj.bottomLimit)
pos = obj.bottomLimit;
if (pos < obj.topLimit)
pos = obj.topLimit;

interval = obj.top - pos;
obj.top = obj.top - interval / 3;
obj.style.top = obj.top + "px";
}, 30)
}

function change_copy(value){
	var target = document.getElementById('address_copy');
	target.src = "/web/sub/copy"+value+".jpg";
}
