function openwin(uri,title,w,h){	if(w){wwidth = w;}else{	wwidth = 380;}	if(h){wheight = h; }else{ wheight = 380;}	xy = get_top_left(wwidth, wheight);	wleft = xy[1];	wtop = xy[0];	wnd = window.open(uri, "sendtofriend", "width="+wwidth+", height="+wheight+", left="+wleft+", top="+wtop+", toolbar=no, location=no, scrollbars=yes, status=no, menubar=no, resizable=no, directories=no");}function get_top_left(width, height){	if (parseInt(navigator.appVersion)>3) {		if (navigator.appName=="Netscape") {			winW = window.innerWidth;			winH = window.innerHeight;			winL = window.screenX;			winT = window.screenY;		}		if (navigator.appName.indexOf("Microsoft")!=-1) {			winW = document.body.offsetWidth;			winH = document.body.offsetHeight;			winL = window.screenLeft;			winT = window.screenTop;		}	}		var scroll = 0;	var l = winL + winW/2 - width/2;	var t = winT + winH/2 - height/2;			if(screen.width <= width){		width=screen.width;	}	if(screen.height <= height){		height=screen.height;		var t = 0;		var scroll = 1;	}	return Array(t,l);}function row_over(obj,id){		obj.style.backgroundColor='#efefef'; 	obj.style.cursor='pointer';	a = document.getElementById('a_'+id);	a.style.color = '#e21332';	c = document.getElementById('c_'+id);	c.style.color = '#e21332';}function row_out(obj,id){		obj.style.backgroundColor=''; 	a = document.getElementById('a_'+id);	a.style.color = 'black';	c = document.getElementById('c_'+id);	c.style.color = 'black';	}function write_flash(filename, w, h, param, transparent) {	document.write('<object align="middle" type="application/x-shockwave-flash" data="'+filename+'" Width="'+w+'" height="'+h+'">');	document.write('<param name="movie" value="'+filename+'" />');	document.write('<param name="FlashVars" value="'+param+'" />');	if (transparent) {		document.write('<param name="wmode" value="transparent" />');	}	document.write('</object>');}
