﻿function showwindow( url, width, height) 
{			
	var wOpen = window.open(url, 'window','toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=yes,resizable=yes,width=' + width + ',height=' + height + '');
	wOpen.focus();	
}