function openImgBrowser(productLineId, productVariantId) {
	window.open('/imgbrowser.php?productLineId='+productLineId + '&productVariantId='+ productVariantId, 'imgbrowser', 'fullscreen=yes');
}
function editPhrase(id, format) {
	window.open('/admin/editphrase.php?phraseId=' + id +'&format='+format, 'phrasewin', 'width=800, height=300');
}
	function showProductImg(productNumber,Title){
	if (window.screen){
		var hori=screen.availWidth;
		var verti=screen.availHeight;
		leftPos = (hori/2)-(465/2)
		topPos = (verti/2)-(465/2)
		url = '/showproductimage.php?Img=' + productNumber + '&Title=' + Title;
		window.open(url ,'focusimg', 'width=465,height=465,left='+leftPos+',top='+topPos+', scrollbars=0');
	}
}
