/* Function For a New Window */
function NewWindow(url, title, height, width) {
var NewWindow = window.open(url, title,'scrollbars=no,menubar=no,height='height',width='width',resizable=no,toolbar=no,location=no,status=no');
}
