function openNewWindow(url) {
//funciton to open a link in a new window

	var params = ""
	//parameters for the window
	
	window.open(url, 'myWindow',params);
	//open a new window, and direct use to the url
	
}
