/* Pop Up
========================================== */
function menuopen(path,width,height){
	window.open(path,'menuopen','width='+width+',height='+height+',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0').focus();
}

function openwin(url , winname ,  width , height ){
	win=window.open(url , winname , 'width=' + width + ', height=' + height + ',toolbar=no,location=no,menubar=no,resizable=yes,status=no');
	win.focus();
}

