// JavaScript Document

/* These functions open the pop-up windows for the website
*/
function OpenCutter(url){
xxx = window.open(url,'Cutters','width=475,height=550,scrollbars=no,left=300,top=200')
xxx.focus()		
}

function OpenToolheads(url){
xxx = window.open(url,'Toolheads','resizable=1,width=465,height=550,scrollbars=no,left=300,top=200')
xxx.focus()		
}

function OpenNews(url){
xxx = window.open(url,'NewsItem','width=570,height=550,scrollbars=yes,left=300,top=200')
xxx.focus()		
}

function OpenCaseStudy(url){
xxx = window.open(url,'CaseStudy','width=570,height=550,scrollbars=yes,left=300,top=200')
xxx.focus()		
}

function OpenFlash(url){
xxx = window.open(url,'Video','width=284,height=220,scrollbars=no,left=400,top=300')
xxx.focus()		
}

function OpenPDF(url){
xxx = window.open(url,'Brochure')
xxx.focus()		
}
//-->