/**********************************************************
    ÀÛ¼ºÀÚ : Á¶Çü·Ä (lyoul@k-net.or.kr)
	¿Ï·áÀÏ : 2001.12.03
	ÆÄ  ÀÏ : js_window.js
    ¼³  ¸í : ÀÚ¹Ù½ºÅ©¸³Æ® À©µµ¿ì¸¦ ½±°Ô ¸¸µé±â À§ÇÑ ÇÔ¼ö
***********************************************************/

function simple_win (url, name, width, height) {
	new_win = window.open (url, name, 'scrollbars=no, toolbar=no, location=no, directories=no, status=no, menubar=no, resizable=yes, width=' + width + ', height=' + height) ;
	new_win.focus();
}

function confirm_simple_win (msg, url, name, width, height) {
	if ( confirm (msg) )
		simple_win (url, name, width, height) ;
}

function simple_win_s (url, name, width, height) {
	new_win = window.open (url, name, 'scrollbars=yes, toolbar=no, location=no, directories=no, status=no, menubar=no, resizable=yes, width=' + width + ', height=' + height) ;
	new_win.focus();
}

function open_window(url, srcollYN, strWidth, strHeight, strTop, strLeft){
	new_win = window.open(url, "open_window", "top=" + strTop + ", left=" + strLeft +", width=" + strWidth + ",height=" + strHeight + ", status=0, menubar=0, resizable=no, scrollbars=" + srcollYN);
	new_win.focus();
}

function open_window2(url, name, srcollYN, strWidth, strHeight, strTop, strLeft){
	new_win = window.open(url, name, "top=" + strTop + ", left=" + strLeft +", width=" + strWidth + ",height=" + strHeight + ", status=0, menubar=0, resizable=no, scrollbars=" + srcollYN);
	new_win.focus();
}


/*ÇÔ¼ö ¼³¸í */
/*
open_url : ¿ÀÇÂ ÆäÀÌÁö ÁÖ¼Ò, strWinName : À©µµ¿ì ÀÌ¸§, srcollYN : ½ºÅ©·Ñ ¿©ºÎ(yes/no)
strWidth : Æø, strHeight : ³ôÀÌ, strTop : Å¾ À§Ä¡, strLeft : ÁÂÃø À§Ä¡

(¿¹)
<a href = "JavaScript:open_window('family_find_result_02.asp', 'yes', '500', '600', '50', '100')">¸µÅ©</a>
*/



 
 




