// JavaScript Document
function showCreditAccount(URL) {
	var windowName = "Credit_Account"
	var width = 630
	var height = 160
	var top = 50
	var left = 200
	var URL = URL
    var features =
        'width='        + width +
        ',height='      + height +
        ',top=' + top +
		',left=' + left +
        ',directories=' + (0) +
        ',location='    + (0) +
        ',menubar='     + (0) +
        ',scrollbars='  + (0) +
        ',status='      + (1) +
        ',toolbar='     + (0) +
        ',resizable='   + (0);
    window.open (URL, windowName, features);
}