self.name="lnpage";
if(top!=self) {
	top.location=self.location
}
function show() {
	if(document.F.userm.value != "") {
		window.location = "index.php?db=community&sub=user&id="+document.F.userm.value;
	}
	if(document.F.userw.value != "") {
		window.location = "index.php?db=community&sub=user&id="+document.F.userw.value;
	}
}

function textCounter(field, countfield, maxlimit) {
if (field.value.length > maxlimit) 
	field.value = field.value.substring(0, maxlimit);
else
	countfield.value = maxlimit - field.value.length;
}
	function textCounter_shoutbox(field, countfield, maxlimit) {
if (field.value.length > maxlimit) 
	field.value = field.value.substring(0, maxlimit);
else
	countfield.value = maxlimit - field.value.length;
}

var w=screen.availWidth;
var h=screen.availHeight;

var px,py;
var popup_width,popup_height;

function weristonline(link){
	mainpopup(link, 680, 560)
}
function highres(link){
	mainpopup(link, 100, 75)
}

function popup(link){
	mainpopup(link, 847, 768)
}
function mainpopup(link, popup_width, popup_height){

	var browserName=navigator.appName; 

	if (browserName=="Microsoft Internet Explorer") {
		popup_width += 2 ;
	}

	px=(w-popup_width-200)/2;
	py=(h-popup_height)/2;

	nuwin = window.open(link, "Popup", "toolbar=0,scrollbars=1,width="+popup_width+",height="+popup_height+",status=0,menubar=0,resizable=1");
	nuwin.resizeTo(popup_width,popup_height);
	nuwin.moveTo(px,py);
	nuwin.focus();
}
