function windowPop(url,name,width,height,location,resize,scrollbars)
{
	properties = 'width=' + width + ',height=' + height + ',location=' + location + ',resizable=' + resize + ',scrollbars=' + scrollbars;
	window.open(url,name,properties);
}