//	openWindow.js
function openNewWindow(URLtoOpen, windowName, windowFeatures) {
	var	newWindow=window.open(URLtoOpen, windowName, windowFeatures);
	newWindow.focus();	
}

//	add the following code for the links
// javascript:openNewWindow('url.htm', 'retailers','height=500, width=635, toolbar=no')