﻿function openWindow(theURL,winName,features) { 
    if(features=="")
        features = "scrollbars=0, menubars=0, toolbars=0, location=0, directories=0, status=0, width=760, height=430, top=0, left=0, resizable=0";    
  
    window.open(theURL,winName,features);
}