function openWindow(destination,width,height) {
	var targetWindow = destination;
	var z = Math.random();
	z = z * 1000;
	z = Math.round(z);
	if (arguments[1] == null) {
		width=600;}
	else {
		width = arguments[1];}
	if (arguments[2] == null) {
		height=500;}
	else {
		height = arguments[2];}
	var wind = "window" + z
	tempWindow = window.open(targetWindow, wind, config='width=' + width + ',height=' + height + ',toolbar=no,menubar=no,scrollbars=yes,resizable=yes,location=no, directories=no,status=yes');
}
