function sendTo(urlPath, width, height)
{
    var y=(screen.height/2)-(height/2);
    var x=(screen.width/2)-(width/2);
	var myWindow; 		
	myWindow = window.open(urlPath,'','width='+width+',height='+height+',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,top='+y+',left='+x);
	myWindow.focus();
	void(0);
}

function viewImageDetail(urlPath,width,height)
{	
    var y=(screen.height/2)-(height/2);
    var x=(screen.width/2)-(width/2);
	var myWindow; 		
	myWindow = window.open(urlPath,'','width='+width+',height='+height+',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,top='+y+',left='+x);
	myWindow.focus();
	void(0);
}

