// JavaScript Document
function GotoUrl(url)
{
	window.location= url;	
}
function OpenPopup(url,w,h)
{
	w = 80 + w;
	h= 80+h;
	window.open(url,"","width="+w+",height="+ h);
}