
function Own_OnBlur(str_DefaultValue,el){
	if(el.value==''){
		el.value = str_DefaultValue;	
	}
}

function Own_OnClick(str_DefaultValue,el){
	
	if(el.value==str_DefaultValue){
		el.value = '';	
	}
}

function Window_popUp(URL,h,w){
		day = new Date();
		id = day.getTime();
		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width="+ w +",height="+ h +",left = 240,top = 212');");
}

function Window_popUp4(FName,URL,h,w,tmpid){
 eval( FName + " = window.open(URL, '" + tmpid + "', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width="+ w +",height="+ h +",left = 240,top = 212');");
}