// JavaScript Document
function openWindow(url, width, height)
{
	var obj = window.open(url, 'objWindow','width=' + width + ',height=' + height);
}


