function winop(tmp){
	var tmp ;
	//window.open('http://v2.libbook.co.kr/univ/index.html?pUniv=dylib&pUser=test_dayang&savepoint=acuser','new','width=620, height=560, toolbar=no,scrollbars=yes,status=no,resizable=no');
	if(tmp == "test" ){
	window.open('http://http://1.224.163.88:8080/?pUniv=dylib&pUser=master&savepoint=acuser&pcode=publisher','new','width=1024, height=700, toolbar=no,scrollbars=yes,status=no,resizable=yes');
	}else if (tmp == "mail1")
	{
	 window.open('http://www.dayang.co.kr/img/Untitled34.gif','new','width=700, height=500, toolbar=no,scrollbars=yes,status=no,resizable=yes');
	}else if (tmp == "mail2")
	{
	 window.open('http://www.dayang.co.kr/img/Untitled-10.jpg','new','width=500, height=500, toolbar=no,scrollbars=yes,status=no,resizable=yes');
	}else if (tmp == "bointech")
	{

	 window.open('http://ecip.libbook.co.kr/?pUniv=dylib&pUser=bointech&savepoint=acuser','new','width=1024, height=700, toolbar=no,scrollbars=yes,status=no,resizable=yes');
	}else if (tmp == "ecip5")
	{

	 window.open('http://ecip5.libbook.co.kr/?pUniv=dylib&pUser=master&savepoint=acuser','new','fullscreen, toolbar=no,scrollbars=yes,status=no,resizable=yes');
	}else if (tmp == "ecip6")
	{

	 window.open('http://ecip6.libbook.co.kr/?pUniv=dylib&pUser=master&savepoint=acuser','new','fullscreen, toolbar=no,scrollbars=yes,status=no,resizable=yes');
	}

}
function entertonext(){
  if(event.keyCode == 13){
    document.form2.password.focus();
  }
}
function entertologin(){
  if(event.keyCode == 13){
    logincheck();
    return;
  }
}

function logincheck()
{
  if(document.form2.id.value == ""){
    alert("¾ÆÀÌµð¸¦ ÀÔ·ÂÇÏ½Ê½Ã¿ä");
    document.form2.id.focus();
    return false;
  }
   if(document.form2.password.value == ""){
    alert("ºñ¹Ð¹øÈ£¸¦ ÀÔ·ÂÇÏ½Ê½Ã¿ä");
    document.form2.password.focus();
    return false;
  }
  document.form2.submit();
  return;
}

//ÃâÆÇ»ç µî·Ï ÆäÀÌÁö¿¡¼­ »ç¿ëÇÏ´Â ½ºÅ©¸³Æ® ½ÃÀÛ
function new_open(url, name) {
	var fom=document.form1;
	var remote = null;
	var id = document.form1.id.value;
	var url = url + "?user_id=" + id;
	if (id.length>0 && (id.length<6 || id.length>15) ){
		alert("6ÀÚ ÀÌ»ó, 15ÀÚ ÀÌÇÏÀÇ ÀÌ¿ëÀÚ ID¸¦ ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À.");
		fom.id.focus();
	}else {
		remote = window.open(url, name,"width=300, height=200,scrollable=no, resizable=no");
		remote.opener = self;
		remote.focus();
		remote.window.location.replace(url);
	}
}

function UniSearch() {
	window.open("../search/SearchUniversity.htm", "search", "width=520,height=500");
}

function zip_chk() {
	var url = "checkpost.htm";
	win = window.open(url,"NewWin","scrollbars=1,resizable=1,width=600,height=400");
}


function submit() {
	var fom=document.form1;
	
	var temp = 999;
	var isbn_num = 0;
	var isbns_tmp = '';
	
	if (!fom.publisher_isbns.value.length==0) {
		var isbns_tmp = fom.publisher_isbns.value;
		while (isbns_tmp.search(/ /) != -1) {
			isbns_tmp = isbns_tmp.replace(/ /i, "");
		}
		
		while (isbns_tmp.search(/-/) != -1) {
			isbns_tmp = isbns_tmp.replace(/-/i, "");
		}
		
		isbn_array = isbns_tmp.split(";");

		for (i=0; i<isbn_array.length; i++){
			isbn_num++;
			tmpo = isbn_array[i].substr(0,2);
			//alert (tmpo);
			tmp = isbn_array[i].substr(2,2);
			len = isbn_array[i].length;
			if (tmpo == '89' && ((tmp >=0 && tmp<=24 && (len==3 || len==4)) || (tmp>=25 && tmp<=54 && len==5) || (tmp>=55 && tmp<=84 && len==6) || (tmp>=85 && tmp<=94 && len==7) || (tmp>=95 && tmp<=99 && len==8))){
			}else if (tmpo != '89'){
				var isbn_alert = "public";
				temp = i + 1;
			}else {
				temp = i + 1;
			}
		}
	}
	//alert ("aaa");
	if (fom.id.value.length < 6 || fom.id.value.length > 15) {				//id check
		alert("6ÀÚ ÀÌ»ó 15ÀÚ ÀÌÇÏÀÇ ÀÌ¿ëÀÚ ID¸¦ ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À.");
	    fom.id.focus();
	}
	else if (fom.id.value.indexOf(' ',0) >=0) {
		alert("ID¿¡´Â °ø¹é¹®ÀÚ¸¦ »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù.");
		fom.id.focus();
	}
	
	else if (fom.password.value.length==0) {		//password check
		alert("ºñ¹Ð¹øÈ£¸¦ ÀÔ·ÂÇÏ½Ê½Ã¿À.");
		fom.password.focus();
	}
	else if (fom.password.value.indexOf(' ',0) >= 0) {
		alert("ºñ¹Ð¹øÈ£¿¡´Â °ø¹é¹®ÀÚ¸¦ »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù.");
		fom.password.focus();
	}
	else if (fom.pwd_conf.value.length==0) {
		alert("ºñ¹Ð¹øÈ£ È®ÀÎ¶õ¿¡¼­ ºñ¹Ð¹øÈ£¸¦ È®ÀÎÇÏ½Ê½Ã¿À.");
		fom.pwd_conf.focus();
	}
	else if (fom.password.value != fom.pwd_conf.value) {
		alert("ºñ¹Ð¹øÈ£°¡ ÀÏÄ¡ÇÏÁö ¾Ê½À´Ï´Ù.");
		fom.password.focus();
	}
	else if (fom.publisher_ko.value.length==0) {
		alert("ÃâÆÇ»ç¸íÀ» ÀÔ·ÂÇÏ¿© ÁÖ½Ê½Ã¿À.");
		fom.publisher_ko.focus();
	}
	else if (fom.representation.value.length==0) {
		alert("´ëÇ¥ÀÚ ÀÌ¸§À» ÀÔ·ÂÇÏ¿© ÁÖ½Ê½Ã¿À.");
		fom.representation.focus();
	}
	else if (temp!=999) {
		if (isbn_num>1){
			if (isbn_alert == "public"){
				alert ( temp + "¹øÂ° ¹ßÇàÀÚ ISBN¿¡ ±¹°¡¹øÈ£°¡ ¾ø½À´Ï´Ù. \nÇÑ±¹ ±¹°¡¹øÈ£ 89¸¦ ºÙ¿©¼­ ÀÔ·ÂÇÏ¿© ÁÖ½Ê½Ã¿À. \n ¿¹)8911;897654" );
				fom.publisher_isbns.focus();
			}else {
				alert( temp + "¹øÂ° ¹ßÇàÀÚ ISBNÀÇ Çü½ÄÀÌ ¸ÂÁö ¾Ê½À´Ï´Ù. \n ¿¹)8911;89-7656");
				fom.publisher_isbns.focus();
			}
		}else{
			if (isbn_alert == "public"){
				alert ( "¹ßÇàÀÚ ISBN¿¡ ±¹°¡¹øÈ£°¡ ¾ø½À´Ï´Ù. \nÇÑ±¹ ±¹°¡¹øÈ£ 89¸¦ ºÙ¿©¼­ ÀÔ·ÂÇÏ¿© ÁÖ½Ê½Ã¿À. \n ¿¹)8911;897654" );
				fom.publisher_isbns.focus();
			}else {
				alert( "¹ßÇàÀÚ ISBNÀÇ Çü½ÄÀÌ ¸ÂÁö ¾Ê½À´Ï´Ù. \n ¿¹)8911;89-7656");
				fom.publisher_isbns.focus();
			}
		}
	}
	else if (fom.zip1.value.length==0) {
		alert("¿ìÆí¹øÈ£¸¦ ÀÔ·ÂÇÏ¿© ÁÖ½Ê½Ã¿À.");
		fom.zip1.focus();
	}
	else if (fom.zip2.value.length==0) {
		alert("¿ìÆí¹øÈ£¸¦ ÀÔ·ÂÇÏ¿© ÁÖ½Ê½Ã¿À.");
		fom.zip2.focus();
	}
	else if (fom.address1.value.length==0) {
		alert("ÁÖ¼Ò¸¦ ÀÔ·ÂÇÏ¿© ÁÖ½Ê½Ã¿À.");
		fom.address1.focus();
	}
	else if (fom.region_tel.value.length==0) {
		alert("È¸»ç ´ëÇ¥ÀüÈ­¹øÈ£(Áö¿ª¹øÈ£)¸¦ ÀÔ·ÂÇÏ¿© ÁÖ½Ê½Ã¿À.");
		fom.region_tel.focus();
	}
	else if (fom.tel1.value.length==0 || isNaN(fom.tel1.value)) {
		alert("È¸»ç ´ëÇ¥ÀüÈ­¹øÈ£¸¦ Á¤È®È÷ ÀÔ·ÂÇÏ¿© ÁÖ½Ê½Ã¿À.");
		fom.tel1.focus();
	}
	else if (fom.tel2.value.length==0 || isNaN(fom.tel2.value)) {
		alert("È¸»ç ´ëÇ¥ÀüÈ­¹øÈ£¸¦ Á¤È®È÷ ÀÔ·ÂÇÏ¿© ÁÖ½Ê½Ã¿À.");
		fom.tel2.focus();
	}
	else if (fom.e_mail.value.length==0) {
		alert("ÃâÆÇ»ç ÀüÀÚ¿ìÆí ÁÖ¼Ò¸¦ ÀÔ·ÂÇÏ¿© ÁÖ½Ê½Ã¿À.");
		fom.e_mail.focus();
	}
	else if (!emailCheck(fom.e_mail.value)) {
		alert("ÃâÆÇ»ç ÀüÀÚ¿ìÆí ÁÖ¼Ò¸¦ È®ÀÎÇØº¸½Ê½Ã¿À.");
		fom.e_mail.focus();
	}
	else if (fom.name.value.length==0) {
		alert("´ã´çÀÚ ÀÌ¸§À» ÀÔ·ÂÇÏ¿© ÁÖ½Ê½Ã¿À.");
		fom.name.focus();
	}
	else if (fom.part.value.length==0) {
		alert("´ã´çÀÚ ºÎ¼­¸¦ ÀÔ·ÂÇÏ¿© ÁÖ½Ê½Ã¿À.");
		fom.part.focus();
	}
	else if (fom.tel_apply1.value.length==0) {
		alert("´ã´çÀÚ ÀüÈ­¹øÈ£¸¦ ÀÔ·ÂÇÏ¿© ÁÖ½Ê½Ã¿À.");
		fom.tel_apply1.focus();
	}
	else if (isNaN(fom.tel_apply1.value)) {
		alert(" ´ã´çÀÚ ÀüÈ­¹øÈ£¿¡ ¼ýÀÚ¸¦ ÀÔ·ÂÇÏ¿© ÁÖ½Ê½Ã¿À. ");
		fom.tel_apply1.focus();
	}
	else if (fom.tel_apply2.value.length==0) {
		alert("´ã´çÀÚ ÀüÈ­¹øÈ£¸¦ ÀÔ·ÂÇÏ¿© ÁÖ½Ê½Ã¿À.");
		fom.tel_apply2.focus();
	}
	else if (isNaN(fom.tel_apply2.value)) {
		alert(" ´ã´çÀÚ ÀüÈ­¹øÈ£¿¡ ¼ýÀÚ¸¦ ÀÔ·ÂÇÏ¿© ÁÖ½Ê½Ã¿À. ");
		fom.tel_apply2.focus();
	}
	else if (fom.tel_apply3.value.length==0) {
		alert("´ã´çÀÚ ÀüÈ­¹øÈ£¸¦ ÀÔ·ÂÇÏ¿© ÁÖ½Ê½Ã¿À.");
		fom.tel_apply3.focus();
	}
	else if (isNaN(fom.tel_apply3.value)) {
		alert(" ´ã´çÀÚ ÀüÈ­¹øÈ£¿¡ ¼ýÀÚ¸¦ ÀÔ·ÂÇÏ¿© ÁÖ½Ê½Ã¿À. ");
		fom.tel_apply3.focus();
	}
	else if (fom.e_mail_apply.value.length==0) {
		alert("´ã´çÀÚ ÀüÀÚ¿ìÆí ÁÖ¼Ò¸¦ ÀÔ·ÂÇÏ¿© ÁÖ½Ê½Ã¿À.");
		fom.e_mail_apply.focus();
	}
	else if (!emailCheck(fom.e_mail_apply.value)) {
		alert("´ã´çÀÚ ÀüÀÚ¿ìÆí ÁÖ¼Ò¸¦ È®ÀÎÇØº¸½Ê½Ã¿À.");
		fom.e_mail_apply.focus();
	}
	
	else if (fom.handphone2.value.length==0 && fom.handphone3.value.length!=0) {
		alert("ÇÚµåÆù ¹øÈ£¸¦ Á¤È®È÷ ÀÔ·ÂÇÏ¿© ÁÖ½Ê½Ã¿À.");
		fom.handphone2.focus();
	}
	else if (fom.handphone2.value.length!=0 && fom.handphone3.value.length==0) {
		alert("ÇÚµåÆù ¹øÈ£¸¦ Á¤È®È÷ ÀÔ·ÂÇÏ¿© ÁÖ½Ê½Ã¿À.");
		fom.handphone3.focus();
	}
	else if (fom.checkid.value!='T') {
		alert("ID Áßº¹°Ë»ç¸¦ ÇÏ¼Å¾ß ÇÕ´Ï´Ù..");
		fom.id.focus();
	}
	else if (confirm(" µî·ÏÇÏ½Ã°Ú½À´Ï±î? ")) {
		if (isbns_tmp.length>0) fom.publisher_isbns.value = isbns_tmp;
		fom.submit();
	}
}

function emailCheck(email)
{
	var nLen = email.length;
	var sPos = email.indexOf('@', 0);
	var ePos = email.lastIndexOf('@', nLen-1);
	
	if (email.length == 0) {
		return false;
	}
	if (email.indexOf(' ', 0) >= 0) {
		return false;
	}
	if (sPos < 0) {
		return false;
	}
	if (sPos != ePos) {
		return false;
	}
	if (email.charAt(0) == '@') {
		return false;
	}
	if (email.charAt(nLen-1) == '@') {
		return false;
	}
	
	return true;
}

function canc_click() {
	var fom=document.form1;
    fom.reset();
    return ;
}
function initialize() {
	document.form1.id.focus();
}

function idcheck() {
  if(document.form1.id.value == ""){ 
    alert("¾ÆÀÌµð¸¦ ÀÔ·ÂÇÏ¼¼¿ä");
    document.form1.id.focus();
	return;
}
  var o_new_win;
  vs_width = 378;
  vs_height = 200;
  vs_url = "checkid.php3?user_id=" + document.form1.id.value;
  if(screen.width < vs_width) vs_width = screen.width - 10;
  if(screen.height < vs_height) vs_height = screen.height - 50;
  i_left = (screen.width - vs_width) / 2;
  i_top = (screen.height - vs_height) / 2;
  o_new_win = window.open(vs_url , "pop", "menubar=0,location=0,directories=0,toolbar=0," +
  "scrollbars=0,status=0,resizable=0,width=" + vs_width + 
  ",height=" + vs_height + ",left=" + i_left + ",top=" + i_top);
  return o_new_win;
}
function login_click(path)	{
	document.login.path.value =	path;
	var	url	= "../login.php";
	win	= window.open(url,"NewWin","scrollbars=0,resizable=no,width=400,height=300");
}

function alert_publisher_reg() {
	alert ("·Î±×ÀÎ ÇÏ½Å ÈÄ¿¡´Â ÃâÆÇ»ç µî·ÏÀ» ÇÒ ¼ö ¾ø½À´Ï´Ù. \n\nÃâÆÇ»ç µî·ÏÀ» ¿øÇÏ½Ã¸é	¸ÕÀú ·Î±×¾Æ¿ôÇØ ÁÖ½Ê½Ã¿ä. ");
}

function log_out()	{
	if (confirm(" ·Î±×¾Æ¿ô ÇÏ½Ã°Ú½À´Ï±î? "))	{
		document.log_out.submit();
	}
}


var	startPosX;

function Clear() {
	if(document.layers)	document.captureEvents(Event.MOUSEMOVE)
	
	if (navigator.appName == 'Netscape'	&& document.layers != null)	{
		pageY =	e.pageY;
		pageX =	e.pageX;
	} else {
		pageY =	event.clientY +	document.body.scrollTop;
		pageX =	event.clientX +	document.body.scrollLeft;
	}
   
	if(pageX>424 ||	pageX==-1) {
		MM_showHideLayers('Layer1','','hide','Layer2','','hide','Layer3','','hide');
	}
}

function calWidth(){
	var	xwidth = document.body.clientWidth;

	var	x =	(xwidth	- 781) / 2;
	var	x2 = ""	+ x;
	var	x =	parseInt(x2);

	if(	x <	0 )	x =	0;

	var	l1 = MM_findObj('layer1', '');
	var	l2 = MM_findObj('layer2', '');
	var	l3 = MM_findObj('layer3', '');
	
	l1.style.left =	x +	382;
	l2.style.left =	x +	530;
	l3.style.left =	x +	677;
	
	startPosX =	x;

	}
//ÃâÆÇ»ç µî·Ï ÆäÀÌÁö¿¡¼­ »ç¿ëÇÏ´Â ½ºÅ©¸³Æ® ³¡
//----------------------------ÇÃ·¡½Ã Å×µÎ¸® Á¦°Å ½ºÅ©¸³Æ®1 start----------------------------//
function flash(c,d,e) {
 var flash_tag = "";
 flash_tag = '<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ';
 flash_tag +='codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" ';
 flash_tag +='WIDTH="'+c+'" HEIGHT="'+d+'" >';
 flash_tag +='<param name="movie" value="'+e+'">';
 flash_tag +='<param name="quality" value="high">';
 flash_tag +='<param name=wmode value=transparent>';  //ÇÃ·¡½Ã ¹è°æÀ» Åõ¸íÇÏ°Ô ÇÒ ¶§
 flash_tag +='<embed src="'+e+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" ';
 flash_tag +='type="application/x-shockwave-flash"  WIDTH="'+c+'" HEIGHT="'+d+'"></embed></object>'
 
 document.write(flash_tag);
}
//----------------------------ÇÃ·¡½Ã Å×µÎ¸® Á¦°Å ½ºÅ©¸³Æ®1 end----------------------------//

//----------------------------ÇÃ·¡½Ã Å×µÎ¸® Á¦°Å ½ºÅ©¸³Æ®2 start----------------------------//
function WriteEmbed(emb_id){ 
    document.write(document.getElementById(emb_id).value);
} 
//----------------------------ÇÃ·¡½Ã Å×µÎ¸® Á¦°Å ½ºÅ©¸³Æ®2 end----------------------------// 

