///////////////////////////////// popup °ü·Ã ÇÔ¼ö ////////////////////////////////////////////////
///////////////////////////////// pop.js //////////////////////////////////////////////////////////

var win_name = null;

////////////////////////////////////////////////////////////////////////////////////////////////////
///////////// onclick="javascript:pop_win('sms.phtm','SMS_Win','100','200','300','200');"	/////////////////////////////////////////
///////////// ÆË¾÷ Ã¢ url, ÆË¾÷Ã¢ name, À§Ä¡°ª(left, top) Å©±â(width, height) ////////////////////////
///////////// url : sms.phtm?id=$y_id&uid=$y_uid&gubn=y&name=$y_name&call=$y_cel /////////
///////////////////////////////////////////////////////////////////////////////////////////////////
function pop_win(html, target, l, t, w, h) 
{
	win_name = window.open(html, target, "' status=no,resizable=no,scrollbars=no,menubar=no,toolbar=no,left="+ l+",top="+ t+",width="+ w+",height="+ h+"'");
	win_name.window.focus();
}
///////////////////////////////////////////////////////////////////////////////////////////////////
///////////////// ½ºÅ©·Ñ auto ÀÏ ¶§ ///////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////
function pop_win2(html, target, l, t, w, h) 
{

	win_name = window.open(html, target, "' status=0,resizable=yes,scrollbars=1,menubar=no,toolbar=no,left="+ l+",top="+ t+",width="+ w+",height="+ h+"'");
	win_name.window.focus();
	
}


function pop_win3(html, target, l, t, w, h) 
{

	win_name = window.open(html, target, "' status=0,resizable=yes,scrollbars=auto,menubar=0,toolbar=no,left="+ l+",top="+ t+",width="+ w+",height="+ h+"'");
	win_name.window.focus();
	
}
function pop_win4(html, target, l, t, w, h) 
{

	win_name = window.open(html, target, "' status=0,resizable=no,scrollbars=1,menubar=no,toolbar=no,left="+ l+",top="+ t+",width="+ w+",height="+ h+"'");
	win_name.window.focus();
	
}
function pop_win5(html, target, l, t, w, h) 
{
	win_name = window.open(html, target, "' status=1,resizable=yes,scrollbars=1,menubar=no,toolbar=no,left="+ l+",top="+ t+",width="+ w+",height="+ h+"'");
	win_name.window.focus();
	
}
function help_pop_win(html, target, l, t, w, h) 
{
	win_name = window.open(html, target, "' statusbar=no,resizable=yes,scrollbars=yes,toolbar=yes,left="+ l+",top="+ t+",width="+ w+",height="+ h+"'");
	win_name.window.focus();
	
}
function pop_win6(html, target, l, t, w, h) 
{
	win_name = window.open(html, target, "' statusbar=no,resizable=no,scrollbars=1,toolbar=no,left="+ l+",top="+ t+",width="+ w+",height="+ h+"'");
	win_name.window.focus();
	
}

// °Ô½Ã¹° ½ºÅ©·¦
function scrapb_chk(category_name)
{
	del_chk = confirm("[°Ô½Ã¹° ½ºÅ©·¦]\n\n °Ô½Ã¹° Á¾·ù: " + category_name + "\n\n ÇöÀç °Ô½Ã¹°À» ½ºÅ©·¦ ÇÏ½Ã°Ú½À´Ï±î?\n\n")
	if(del_chk == false)
	{
		document.ScrapForm.reset();
		return;
	}
	document.ScrapForm.submit();
	return;
}