﻿/**
 * FileName:winopen.js
 * @author uniteair.co.jp
 */

function winopen(file, w, h){
	var win = window.open(file, 'newwin', 'width='+w+', height='+h+', menubar=no, toolbar=no, resizable=yes, scrollbars=yes');
	win.focus();
}
