// JavaScript Document
function goto(url){
	window.location=url;	
}
function open_pop_full(url){
	//var width = screen.availWidth;
   // var height = screen.availHeight;
	//var left = parseInt((screen.availWidth/2) - (width/2));
  //  var top = parseInt((screen.availHeight/2) - (height/2));
	window.open(url,'',"scrollbars=0  status=0 resizable=0 location =0 left=0 top=0");
}