function customWindow(url, height, width, top, left, scrollbars, location, menubar, toolbar, status, resizable, copyhistory, directories) {
	if(url) var url = url; else var url = "http://www.basspro.com/servlet/catalog.OnlineShopping";
	if(width) var width = width; else var width = 400;
	if(height) var height = height; else height = 400;
	if(toolbar) var toolbar = toolbar; else var toolbar= 0;
	if(location) var location = location; else var location = 0;
	if(directories) var directories = directories; else var directories = 0;
	if(copyhistory) var copyhistory = copyhistory; else var copyhistory = 0;
	if(status) var status = status; else var status = 0;
	if(menubar) var menubar	= menubar; else var menubar	= 0;
	if(scrollbars) var scrollbars = scrollbars; else var scrollbars = 0;
	if(resizable) var resizable = resizable; else var resizable = 0;
	if(top) var top = top; else var top = 100;
	if(left) var left = left; else var left = 100;
	var props = "toolbar=" +toolbar+ ",location=" +location+ ",directories=" +directories+ ",status=" +status+ ",menubar=" +menubar+ ",scrollbars=" +scrollbars+ ",resizable=" +resizable+ ",copyhistory=" +copyhistory+ ",width=" +width+ ",height=" +height+ ",top=" +top+ ",left=" +left; 
	var newWindow = window.open(url, "popup", props);
}