// Author		: Abhilash V
// Created on	: 10/03/2008
//-------------------------------------------------------------------------------------------------


// Function to open new window
function showWebURL(url)
{
	link_to_open = url;
	window.open(link_to_open, "webwindow","toolbar=0, resizable=yes, scrollbars=yes, statusbar=0, height=700, width=650");	
}
