// JavaScript Document


function openWindow(url, width, height)
{
	var Win = window.open(url,"openScript",'width=' + width + ',height=' + height + ',location=no,toolbar=no,menubar=no,scrollbars=yes,resizable=no,left=30,top=30' );
}
