function winOp440x200(i) {
var winprops = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=200,height=440,top=120,left=500";
OpenWindow = window.open(i, "profile", winprops);
OpenWindow.focus();
}
var op;
function opPict(img,w,h,alt) {
	if(op){
		op.close();
	}
op=window.open("","","width="+w+",height="+h);
op.document.write('<html><head><title>'+alt+'</title>');
op.document.write('</head><body style="margin:0">');
op.document.write('<img src='+img+' width='+w+' height='+h+' alt="'+alt+'">');
op.document.write('</body></html>');
op.document.close();
}

function winOp(i,w,h,alt) {
	if(op){
		op.close();
	}
op=window.open(i,"alt","width="+w+",height="+h);
op.focus();
}