
function OpenWindow(URL,W,H,winName){

//	var windowW = W + 110;
//	var windowH = H + 10;
//	var X = Math.ceil( (window.screen.width  - windowW) / 2 );
//	var Y = Math.ceil( (window.screen.height - windowH) / 2 );

	window.open(URL,winName, "location=no,toolbar=no,hotkeys=no,directories=no,left=20,top=20,width=" + W + ",height=" + H);

}

function open_pvm_win(mcode,mtype,startpos,during,openurl){
	if(startpos==null || startpos==''){
		startpos = '0';
	}

	if(during==null || during==''){
		during = '';
	}

	if(openurl==null || openurl==''){
		openurl = this.location.href;
	}
	var url = "http://www.cinewel.com/player/standard/play_precheck.jsp?mcode="+mcode+"&mtype="+mtype+"&g_duration="+during+"&g_mediapos="+startpos+"&openerurl="+openurl;

	OpenWindow(url,500,400,'PLAY_WIN');
}


/*** »ó¼¼ ÆäÀÌÁö ÀÌµ¿ ***/
function DetailView(code,bigcode){
	if (bigcode == "mb001"){			// ÀÏ¹Ý¿µÈ­
		document.location.href="http://www.cinewel.com/movie/view.jsp?code=" + code;
	
	}else if (bigcode == "mb002"){		// ¹«·á°ü
		document.location.href="http://www.cinewel.com/movie/view_freemovie.jsp?code=" + code;
	
	}else if (bigcode == "mb003"){		// ¼ºÀÎ°ü
		document.location.href="http://www.cinewel.com/adult/view_ero.jsp?code=" + code;
	
	} 
}
