// JavaScript Document
// Open Popup Window #1
function wopen1(url, w, h) {
	w += 32;
	h += 96;
	var win = window.open(url, 'popup', ' width=' + w + ', height=' + h + ', ' + ' location=0, menubar=0, status=0, toolbar=0, scrollbars=1, resizable=1' );
 	win.focus();
}
function wopen2(url, w, h) {
	w += 32;
	h += 96;
	var win = window.open(url, 'popup', ' width=' + w + ', height=' + h + ', ' + ' location=1, menubar=1, status=1, toolbar=1, scrollbars=1, resizable=1' );
 	win.focus();
}

// css for hover form button
function hov(loc,cls) {
	if(loc.className)
  	loc.className=cls;
}

