
function getObj( name, forceIEBehavior )
{
    var newObj;
    if ( typeof name == "string" ) {
        if (document.getElementById) {
            newObj = document.getElementById(name);
            if ( newObj == null && forceIEBehavior != null & forceIEBehavior ) {
                var newObjArray = document.getElementsByName( name );
                if ( newObjArray != null && newObjArray.length > 0 ) 
                    newObj = newObjArray[ 0 ];
            }else{
                var newObjArray = document.getElementsByName( name );
                if ( newObjArray != null && newObjArray.length > 0 ) 
                    newObj = newObjArray[ 0 ];
            }
        }
        else if (document.all) {
            newObj = document.all[name];
        }
        else if (document.layers) {
            newObj = document.layers[name];
        }
    }
    else
        newObj = name;
    return newObj;
}

function billchamc(url){

		window.open(url,'mywindow','width=800,height=600,toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes,resizable=yes');
}
function popupWindow(url){
		window.open(url,"","status=yes,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=yes,width=680,height=1000,left=300,top=200");
}


	function emailafriend(maga_arti_id,mag_issue_id) {
// alert('/realtyzone/user/RealtyzoneEmail.do?method=articleEmailForm&maga_arti_id='+maga_arti_id);
 window.open('/realtyzone/user/RealtyzoneEmail.do?method=articleEmailForm&maga_arti_id='+maga_arti_id+'&mag_issue_id='+mag_issue_id,'mapChildWindow',
 'toolbar=0,menubar=0,directories=0,scrollbars=1,left=100,top=100,width=450,height=460');
	
	return false;
 }	
function pagePopUp2(arg){


	mywindow = window.open(arg,'','scrollbars=yes,menubar=no,height=480,width=700,resizable=no,toolbar=no,location=no,status=no');
	mywindow.moveTo(160,250);
}